home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / forth / pfe-0.000 / pfe-0 / pfe-0.9.13 / src / config / EMX / options.mk < prev   
Encoding:
Text File  |  1995-05-19  |  1.0 KB  |  37 lines

  1. #
  2. # EMX/options.mk ---    Part of Makefile for PFE, compiler options for gcc/emx.
  3. #
  4. # - the Makefile works with dmake in OS/2
  5. #   (dmake - Copyright (c) 1990,1991 by Dennis Vadura, Version 3.80, PL 0),
  6. #   and the way I configured it (default) dmake uses COMSPEC as command line
  7. #   interpreter which in my case is CMD.EXE.
  8. #   If you use gnu-make and/or a unix-like shell as command line interpreter,
  9. #   be prepared to get errors. One reason is the neccessary quoting of the
  10. #   `"' and `\' in $(PREFIX). I must leave it up to you to get it right.
  11. #
  12. # - when you build under DOS, be warned that the command line for the
  13. #   final link step is too long. Replace $(OBJECTS) by *.OBJ.
  14. #
  15.  
  16. # Where you store online help files and other stuff.
  17. PREFIX    = C:
  18. PFELIB    = $(PREFIX)\\lib\\pfe
  19. PFEHLP    = $(PFELIB)\\help
  20.  
  21. SYSTEM    = EMX
  22.  
  23. CC    = gcc -Wall
  24. OPTIM    = -m486 -O2 -fomit-frame-pointer -DUSE_REGS -DUNROLL_NEXT
  25. DEBUG    = -g
  26.  
  27. CL    = $(CC)
  28. CPP    = $(CC) -E
  29. OPTIONS    = 
  30. STRIP    = -s
  31. TERM_O    = term-emx$o
  32. SYS_O    = unix$o
  33. LFLAGS    = 
  34. LIBS    = -lbsd -lvideo -lm
  35.  
  36.  
  37.